home *** CD-ROM | disk | FTP | other *** search
- /*
- ** UserInfo ARexx script v1.0 for Spot
- ** By Kasper B. Graversen
- */
-
- address spot
-
- 'ismessages'
- if rc = 5 then do
- 'requestnotify "Use in message window only!"'
- exit
- end
-
- saveascii 'T:UserInfo.temp' OVERWRITE NOHEADER NOKLUDGES
-
- address command 'c:userinfo' 'read' 's:userinfo.cfg' 't:UserInfo.temp' 't:UserInfo.txt'
- address command 'c:most' 't:UserInfo.txt' 'PUBSCREEN' '"SPOT"'
-
- address command 'c:delete' 't:UserInfo.temp' '>nil:'
- address command 'c:delete' 't:UserInfo.txt' '>nil:'
-
- return
-
-